home *** CD-ROM | disk | FTP | other *** search
/ Champak Vol F-12 / (Vol F-12) Jun 02 2012.iso / Screensaver / screensaver_installer.exe / ____swmx / scripts / frame_1 / DoAction_17.as < prev    next >
Text File  |  2004-10-21  |  390b  |  16 lines

  1. _global.ScreenweaverGlobalMouse = function()
  2. {
  3.    this.init();
  4. };
  5. ScreenweaverGlobalMouse.prototype.init = function()
  6. {
  7. };
  8. ScreenweaverGlobalMouse.prototype.startTracking = function()
  9. {
  10.    swInterface.setEventListener("MouseMove",swEvents.onGlobalMouseMove);
  11. };
  12. ScreenweaverGlobalMouse.prototype.stopTracking = function()
  13. {
  14.    swInterface.clearEventListener("MouseMove");
  15. };
  16.